Avoid picking up long description as translator comment
authorMatthias Clasen <mclasen@redhat.com>
Fri, 22 Aug 2014 05:10:24 +0000 (01:10 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 22 Aug 2014 06:04:31 +0000 (02:04 -0400)
Rearrange a few lines to help xgettext avoid picking up the
long description of GtkAboutDialog as translator comment.

gtk/gtkaboutdialog.c

index f5decfe24d16f4b8421f8f28c2c8b1ef4af61795..85daec4a93d6da92cda584496de9a051bf18496a 100644 (file)
  * the “Close” button returns the #GTK_RESPONSE_CANCEL response id.
  */
 
-/* Translators: this is the license preamble; the string at the end
- * contains the name of the license as link text.
- */
-static const gchar *gtk_license_preamble = N_("This program comes with ABSOLUTELY NO WARRANTY.\nSee the <a href=\"%s\">%s</a> for details.");
-
 typedef struct
 {
   const gchar *name;
   const gchar *url;
 } LicenseInfo;
 
+/* Translators: this is the license preamble; the string at the end
+ * contains the name of the license as link text.
+ */
+static const gchar *gtk_license_preamble = N_("This program comes with ABSOLUTELY NO WARRANTY.\nSee the <a href=\"%s\">%s</a> for details.");
+
 /* LicenseInfo for each GtkLicense type; keep in the same order as the enumeration */
 static const LicenseInfo gtk_license_info [] = {
   { N_("License"), NULL },